home *** CD-ROM | disk | FTP | other *** search
/ Power CD / Power CD ATARI-Rechner Lieben.iso / FALCON / CLOE / XRAY1.DAT < prev   
Encoding:
Text File  |  1992-12-05  |  1.7 KB  |  96 lines

  1. // Xray1.dat
  2. // 
  3. // For CLOE v1.0
  4. // Copyright (c) 1992 Pierre.E Gougelet
  5. //
  6. // Sample primitive
  7. //
  8.  
  9. #COLOUR White              {1.0 1.0 1.0}
  10. #COLOUR Red                {1.0 0.0 0.0}
  11. #COLOUR Green              {0.0 1.0 0.0}
  12. #COLOUR Blue               {0.0 0.0 1.0}
  13. #COLOUR Yellow             {1.0 1.0 0.0}
  14. #COLOUR Cyan               {0.0 1.0 1.0}
  15. #COLOUR Magenta            {1.0 0.0 1.0}
  16. #COLOUR Black              {0.0 0.0 0.0}
  17.  
  18. #scene
  19.   width           100
  20.   height          100
  21.   location        {-30 -80 -200}
  22.   lookat          {0 0 0}
  23.   up              {0 1 0}
  24.   angle           18
  25. #end
  26.  
  27. #light
  28.   PONCTUELLE
  29.   location        {500 -200 0}
  30.   colour           White
  31. #end
  32.  
  33. #light
  34.   PONCTUELLE
  35.   location        {100 -120 -500}
  36.   colour           White
  37. #end
  38.  
  39. #object
  40.   #plane vertex {0 30 0} {0 30 -10} {10 30 0} #end
  41.   #surface
  42.     colour       Black
  43.     ambient     0.15
  44.     diffuse     0.2
  45.     specular    0.9
  46.     reflection  0.6
  47.     shine       20
  48.   #end
  49. #end
  50.  
  51. #surface surf
  52.   colour       White
  53.   ambient     0.15
  54.   diffuse     0.3
  55.   specular    0.4
  56.   reflection  0.8
  57.   shine       200
  58. #end
  59.  
  60. #object
  61.   #box
  62.     lower       {-50 -30 0}
  63.     upper       {-30 30 20}
  64.   #end
  65.   surf
  66.   #surface colour Yellow #end
  67. #end
  68.  
  69. #object
  70.   #sphere
  71.     center      {10 5 120}
  72.     radius      30
  73.   #end
  74.   surf
  75.   #surface colour Green #end
  76. #end
  77.  
  78. #object
  79.   #cone
  80.     base        20 {10 30 -20}
  81.     apex        1  {10 -10 -20}
  82.   #end
  83.   surf
  84.   #surface colour Red #end
  85. #end
  86.  
  87. #object
  88.   #cylinder
  89.     radius      10
  90.     base        {40 30 10}
  91.     apex        {40 -30 10}
  92.   #end
  93.   surf
  94.   #surface colour Magenta #end
  95. #end
  96.